home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / share / ctime.awk < prev    next >
Encoding:
Text File  |  1998-12-04  |  233 b   |  12 lines

  1. # ctime.awk
  2. #
  3. # awk version of C ctime(3) function
  4.  
  5. function ctime(ts,    format)
  6. {
  7.     format = "%a %b %d %H:%M:%S %Z %Y"
  8.     if (ts == 0)
  9.         ts = systime()       # use current time as default
  10.     return strftime(format, ts)
  11. }
  12.